home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / FALCON / CPX / GENERAL.TC / CPXSTART.S < prev    next >
Encoding:
Text File  |  2001-02-10  |  908 b   |  38 lines

  1. ; cpxstart.asm
  2. ;=============================================================================
  3. ; Startup file for CPXs
  4. ; Date: February 27, 1990
  5. ;
  6. ; format for mad mac:   mac cpxstart.asm
  7. ;
  8. ; The storage space for your variables is currently set to 10 words
  9. ; If you need more, well, change it.
  10. ; If your not using mad mac, then you can always type in
  11. ;   .dc.w 0 as many times as you need it...:-)
  12. ;
  13.  
  14.  
  15.     .globl        cpxstart
  16.     .globl        save_vars
  17.     .globl        cpx_init
  18.  
  19.     .text
  20.  
  21. cpxstart:
  22.          jmp cpx_init
  23.  
  24.     .data
  25.  
  26. save_vars:
  27.         .dc.w    1    ; Keyclick  0 or 1
  28.         .dc.w    1    ; Bell      0 or 1
  29.         .dc.w    3    ; dclick    0, 1, 2, 3, 4
  30.         .dc.w    2    ; keyboard repeat rate
  31.         .dc.w    23    ; keyboard response rate
  32.         .dc.w    3    ; blitter/ttcache on/off
  33.         .dc.w   1    ; TT speaker on/off
  34.         .dc.w   2    ; STE Toggle  0 -  8mhz No Cache
  35.                 ;          1 -  16mhz no cache
  36.                 ;          2 -  16mhz with cache
  37.     .end
  38.